/* Banner Section */
.banner {
    background: linear-gradient(to right, #94f894, #0eb8f7);
    background-size: cover;
    background-position: center;
    height: auto;
    position: relative;
    color: white;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-overlay {
    width: 100%;
    height: 100%;
    padding: 20px;
      /* min-height: 500px; */
    border-radius: 12px;
    /* background: rgba(226, 226, 226, 0.5); */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.banner-title {
    font-size: 2rem;
    font-weight: bold;
    /* margin-top: 40px; */
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.banner-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin-top: 10px;
}

.custom-video-ratio {
    position: relative;
    width: 50%;
    padding-top: 28%;
    /* ปรับสูง-ต่ำตามต้องการ เช่น 56.25% สำหรับ 16:9 */
}

.custom-video-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


@media (max-width: 768px) {
    .banner-title {
        font-size: 1.8rem;
    }

    .banner-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .banner-overlay {
        padding: 30px 20px;
    }
    .custom-video-ratio {
        width: 100%;
        padding-top: 50%;
    }
}